home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / T84IQG (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  446 b   |  13 lines

  1. package java.net;
  2.  
  3. import java.io.IOException;
  4.  
  5. public class MalformedURLException extends IOException {
  6.    public MalformedURLException() {
  7.    }
  8.  
  9.    public MalformedURLException(String msg) {
  10.       super(msg);
  11.    }
  12. }
  13.